home *** CD-ROM | disk | FTP | other *** search
- #########################################################################
- # #
- # Copyright (c) 1987, David B. Wecker #
- # All Rights Reserved #
- # #
- # This file is part of DBW_Render #
- # #
- # DBW_Render is distributed in the hope that it will be useful, but #
- # WITHOUT ANY WARRANTY. No author or distributor accepts #
- # responsibility to anyone for the consequences of using it or for #
- # whether it serves any particular purpose or works at all, unless #
- # he says so in writing. Refer to the DBW_Render General Public #
- # License for full details. #
- # #
- # Everyone is granted permission to copy, modify and redistribute #
- # DBW_Render, but only under the conditions described in the #
- # DBW_Render General Public License. A copy of this license is #
- # supposed to have been given to you along with DBW_Render so you #
- # can know your rights and responsibilities. It should be in a file #
- # named COPYING. Among other things, the copyright notice and this #
- # notice must be preserved on all copies. #
- #########################################################################
- # #
- # Authors: #
- # DBW - David B. Wecker #
- # jhl - John H. Lowery (IBM port) #
- # #
- # Versions: #
- # V1.0 870125 DBW - First released version #
- # V2.0 891031 jhl - ported to IBM PC, Microsoft C 5.1, MS MAKE #
- # NOTE: assumes automatic library inclusion #
- # on link, including GRAPHICS.LIB #
- # #
- #########################################################################
-
- COMPILE = CL /AL /Gs /c
-
- display.obj : display.c display.h
- $(COMPILE) display.c
-
- gifcompr.obj: gifcompr.c display.h
- $(COMPILE) gifcompr.c
-
- # WARNING: DO NOT allow LINK's command line to exceed 128 characters
- # or it will fail.
-
- display.exe : display.obj
- LINK display+gifcompr, tmp, display /MAP;
- EXEPACK tmp.exe display.exe
- DEL tmp.exe
-